home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 140_01 / zcasm14.c < prev   
Text File  |  1985-03-09  |  24KB  |  957 lines

  1. /*
  2.  
  3. ZCASM.C    -- a modification of Leor Zolman's CASM.C
  4.  
  5. Copyright (c) 1983 Brian Waldron, Xerox Corporation
  6.  
  7. Altered to accept standard ZILOG Z80 mnemonics and output
  8. short labels for consumption by Microsoft's M80/L80
  9.  
  10.     See the CASM Appendix in the BDSC User's Guide for
  11.     complete information.
  12.  
  13.     Compile and link with:
  14.  
  15.             cc zcasm.c -o -e4300
  16.  
  17.             l2 zcasm
  18.         (or)    clink zcasm
  19.  
  20.     ver. 1.0    7 Oct 83 blw
  21.  
  22.     ver. 1.1    11 Oct 83 blw
  23.             changed DB, DW, DS to DEFB, DEFW, DEFS
  24.             and modified putdir() accordingly
  25.  
  26.     ver. 1.2    17 Oct 83 blw
  27.             cleaned up numerous typos
  28.  
  29.     ver 1.2 released to PD January 1984
  30.  
  31.     ver. 1.3    21 Feb 84 blw
  32.             Allowed underscore(_) in function names
  33.  
  34.     ver. 1.4    27 Mar 85        Lindsay Haisley - Austin, TX.
  35.             Fixed numerous lethal bugs associated with the
  36.             EXTERNAL ZCASM pseudo op.  The list of needed
  37.             functions (*nflist) will now include the name
  38.             of the current function itself, thus avoiding
  39.             multiple lables when EXTERNAL functions are
  40.             referenced. Several initializers in "for" loops 
  41.             were changed to accomodate this modification.
  42.             Two "JMP" statements changed to "JP" statements
  43.             for Z80.  One fprintf2 statement fixed so that 
  44.             the number of arguments agrees with the number 
  45.             of conversion characters.
  46.               
  47. ZCASM is hereby placed in the public domain with the restriction
  48. that it may not be distributed for profit.
  49.  
  50. */
  51.  
  52. #include <bdscio.h>
  53.  
  54. #define TITLE "BDS C CRL-format M80/L80 Preprocessor ver. 1.4\n"
  55.  
  56.  
  57. /*
  58.  *    Customizable definitions:
  59.  */
  60.  
  61. #define DEFUSER    "9/"        /* default user area for include files     */
  62.                 /* make this a null string for "current" */
  63.  
  64. #define DEFDISK "A:"        /* default disk for include files     */
  65. #define ZCASMEXT    ".CZM"    /* extension on input files          */
  66. #define ASMEXT    ".MAC"        /* extension on output files         */
  67. #define SUBFILE "A:ZZZ.FOO"    /* Submit file to erase on error. To not */
  68.                 /* erase any, use a null string ("")     */
  69.  
  70. #define CONTROL_C 3        /* Abort character */
  71. #define EQUMAX    500        /* maximum number of EQU ops         */
  72. #define FUNCMAX    100        /* maximum number of functions         */
  73. #define NFMAX    100        /* maximum number of external functions
  74.                    in one function             */
  75. #define LABMAX    150        /* max number of local labels in 1 func     */
  76. #define TXTBUFSIZE 2000        /* max # of chars for labels and needed
  77.                    function names for a single function     */
  78.  
  79.         /* the following stuff implements a symbol table for
  80.            the purpose of shortening labels to accommidate M80    */
  81.  
  82. #define MAXSYMS 150        /* max # of entries in label        */
  83.                 /* innumeration table            */
  84. #define MAXCHARS 1500        /* max # of chars in lable        */
  85.                 /* innumeration table            */
  86.  
  87. char *str_name[MAXSYMS];    /* array of symbol table entries    */
  88. char sym_buff[MAXCHARS];    /* symbol table                */
  89. char *next_sym;            /* pointer to next empty slot        */
  90. int  current_syms;        /* # of currently defined entries    */
  91.  
  92. /*
  93.  *    End of customizable section
  94.  */
  95.  
  96. #define DIRSIZE    512        /* max # of byte in CRL directory     */
  97. #define TPALOC    0x100        /* base of TPA in your system        */
  98.  
  99.         /* Global data used throughout processing
  100.            of the input file:            */
  101.  
  102. char    fbuf[BUFSIZ];        /* I/O buffer for main input file    */
  103. char    incbuf[BUFSIZ];        /* I/O buffer for included file     */
  104. char    obuf[BUFSIZ];        /* I/O buffer for output file        */
  105. char    *cbufp;            /* ptr to currently active inp buf    */
  106. char    *cfilnam;        /* ptr to name of current inp file    */
  107. char    nambuf[30],        /* filenames for current intput        */
  108.     nambuf2[30],        /* and output files.            */
  109.     onambuf[30];
  110.  
  111. char    *equtab[EQUMAX];    /* table of absolute symbols        */
  112. int    equcount;        /* # of entries in equtab        */
  113.  
  114. char    *fnames[FUNCMAX];    /* list of functions in the file    */
  115. int    fcount;            /* # of entries in fnames        */
  116.  
  117. int    lino,savlino;        /* line number values used for
  118.                    error reporting.            */
  119.  
  120. char    doingfunc;        /* true if now processing a function    */
  121.  
  122. char    errf;            /* true if an error has been detected    */
  123. char    verbose;        /* true to output wordy comments    */
  124. char    blankflag;        /* true if last line processed was null    */
  125.  
  126.         /* Global data used during the processing of a
  127.            single function in the source file:            */
  128.  
  129. char    *nflist[NFMAX];        /* list of needed functions        */
  130. int    nfcount;        /* number of entries in nflist        */
  131.  
  132. struct {
  133.     char *labnam;        /* name of function label        */
  134.     char defined;        /* whether it has been defined yet    */
  135. } lablist[LABMAX];
  136.  
  137. int    labcount;        /* # of local labels in a function    */
  138.  
  139. char    txtbuf[TXTBUFSIZE],    /* where text of needed function     */
  140.     *txtbufp;        /* names and function labels go        */
  141.  
  142. char     linbuf[150],        /* text line buffers    */
  143.     linsav[150],
  144.     workbuf[150],
  145.     pbuf[150], *pbufp;
  146.  
  147. char    *cfunam;    /* pointer to name of current function        */
  148. int    relblc;        /* relocation object count for a function    */
  149.  
  150. char    pastnfs;        /* true if past all needed functions    */
  151.                 /* declarations ("external" pseudo ops)    */
  152.  
  153. int    argcnt;            /* values set by "parse_line" function    */
  154. char    *label,
  155.     *op,
  156.     *argsp,
  157.     *args[40];
  158.  
  159. char     *gpcptr;        /* general-purpose text pointer    */
  160. char    temp_string[20];    /* scratch text buffer        */
  161.  
  162. /*
  163.  * Open main input file, open output file, initialize needed globals
  164.  * and process the file:
  165.  */
  166.  
  167. main(aarghc,aarghv)
  168. char **aarghv;
  169. {
  170.     int i,j,k;
  171.     char c, *inpnam, *outnam;
  172.  
  173.     puts(TITLE);
  174.  
  175.     initequ();        /* init EQU table with reserved words    */
  176.     fcount = 0;        /* haven't seen any functions yet    */
  177.     doingfunc = FALSE;    /* not currently processing a function    */
  178.     errf = FALSE;        /* no errors yet */
  179.     verbose = FALSE;
  180.     inpnam = outnam = NULL;    /* haven't seen any names yet        */
  181.     blankflag = FALSE;    /* haven't just processed a null line    */
  182.  
  183.     while (--aarghc) 
  184.     {
  185.         ++aarghv;    /* bump to next arg text */
  186.         if (**aarghv == '-')
  187.         {
  188.             switch(c = aarghv[0][1])
  189.             {
  190.             case 'C':
  191.                 verbose = 1;
  192.                 break;
  193.  
  194.             case 'O':
  195.                 if (aarghv[0][2])
  196.                     outnam = &aarghv[0][2];
  197.                 else if (--aarghc)
  198.                     outnam = *++aarghv;
  199.                 else goto usage;
  200.                 break;
  201.  
  202.             default: goto usage;
  203.             }
  204.         }
  205.         else
  206.             inpnam = *aarghv;
  207.     }
  208.  
  209.     if (!inpnam) {
  210.   usage:    puts("Usage:\tzcasm [-c] [-o <name>] <filename>\n");
  211.         puts("-C: don't strip comments from input and output\n");
  212.         puts("-O <name>: Call the output file <name>.MAC\n");
  213.         if(*SUBFILE) unlink(SUBFILE);
  214.         exit();
  215.     }
  216.  
  217.     /* set up filenames with proper extensions: */
  218.     for (i = 0; (c = inpnam[i]) && c != '.'; i++)
  219.         nambuf[i] = c;
  220.     nambuf[i] = '\0';
  221.  
  222.     strcpy(onambuf, outnam ? outnam : nambuf);
  223.     strcat(nambuf,ZCASMEXT);    /* input filename */
  224.     cbufp = fbuf;            /* buffer pointer */
  225.     cfilnam = nambuf;        /* current filename pointer */
  226.     if (fopen(cfilnam,cbufp) == ERROR){
  227.         if (*SUBFILE) unlink(SUBFILE);
  228.         exit(printf("Can't open %s\n",cfilnam));
  229.     }    
  230.     if (!hasdot(onambuf))
  231.         strcat(onambuf,ASMEXT);        /* output filename */
  232.     if (fcreat(onambuf,obuf) == ERROR){
  233.         if(*SUBFILE) unlink(SUBFILE);
  234.         exit(printf("Can't create %s\n",onambuf));
  235.     }
  236.                     /* begin writing output file */
  237.     fprintf2(obuf,"\nTPALOC\tEQU\t%04xH\n",TPALOC);
  238.  
  239.     lino = 1;            /* initialize line count */
  240.  
  241.     while (get_line()) {        /* main loop */
  242.         if (kbhit() && getchar() == CONTROL_C)
  243.             abort("Aborted by ^C\n");
  244.         process_line();        /* process lines till EOF */
  245.         lino++;
  246.     }
  247.  
  248.     if (doingfunc)        /* if ends inside a function, error */
  249.         abort("File ends, but last function is unterminated\n");
  250.  
  251.     if (errf)
  252.     {
  253.         puts("Fix those errors and try again...");
  254.         unlink(onambuf);
  255.         if (*SUBFILE) 
  256.             unlink(SUBFILE);
  257.     }
  258.     else
  259.     {
  260.                     /* end of functions    */
  261.         fputs2("\nEND$CRL\tEQU\t$-TPALOC\n",obuf);
  262.         putdir();        /* now put out CRL dir.    */
  263.         fputs2("\tEND\n",obuf);    /* end of ASM file    */
  264.         putc(CPMEOF,obuf);    /* CP/M EOF char.    */
  265.         fclose(cbufp);        /* close input file    */
  266.         fclose(obuf);        /* close output file    */
  267.         printf("%s is ready to be assembled.\n",onambuf);
  268.     }
  269. }
  270.  
  271. /*
  272.  * Get a line of text from input stream, and process
  273.  * "include" ops on the fly:
  274.  */
  275.  
  276. int get_line()
  277. {
  278.     int i;
  279.  
  280. top:    if (!fgets(linbuf,cbufp)) {        /* on EOF: */
  281.         if (cbufp == incbuf) {        /* in an "include" file?*/
  282.             fabort(cbufp->_fd);    /* close the file    */
  283.             cbufp = fbuf;    /* go back t